home *** CD-ROM | disk | FTP | other *** search
- /*
- * $Id: elf.h,v 1.10 1998/05/01 01:35:51 ralf Exp $
- */
- #ifndef __ASM_MIPS_ELF_H
- #define __ASM_MIPS_ELF_H
-
- /* ELF register definitions */
- #define ELF_NGREG 45
- #define ELF_NFPREG 33
-
- typedef unsigned long elf_greg_t;
- typedef elf_greg_t elf_gregset_t[ELF_NGREG];
-
- typedef double elf_fpreg_t;
- typedef elf_fpreg_t elf_fpregset_t[ELF_NFPREG];
-
- /*
- * This is used to ensure we don't load something for the wrong architecture.
- */
- #define elf_check_arch(x) ((x) == EM_MIPS || (x) == EM_MIPS_RS4_BE)
-
- /*
- * These are used to set parameters in the core dumps.
- * FIXME(eric) I don't know what the correct endianness to use is.
- */
- #define ELF_CLASS ELFCLASS32
- #ifdef __MIPSEB__
- #define ELF_DATA ELFDATA2MSB
- #elif __MIPSEL__
- #define ELF_DATA ELFDATA2LSB
- #endif
- #define ELF_ARCH EM_MIPS
-
- #define USE_ELF_CORE_DUMP
- #define ELF_EXEC_PAGESIZE 4096
-
- #define ELF_CORE_COPY_REGS(_dest,_regs) \
- memcpy((char *) &_dest, (char *) _regs, \
- sizeof(struct pt_regs));
-
- /* This yields a mask that user programs can use to figure out what
- instruction set this cpu supports. This could be done in userspace,
- but it's not easy, and we've already done it here. */
-
- #define ELF_HWCAP (0)
-
- /* This yields a string that ld.so will use to load implementation
- specific libraries for optimization. This is more specific in
- intent than poking at uname or /proc/cpuinfo.
-
- For the moment, we have only optimizations for the Intel generations,
- but that could change... */
-
- #define ELF_PLATFORM (NULL)
-
- /* See comments in asm-alpha/elf.h, this is the same thing
- * on the MIPS.
- */
- #define ELF_PLAT_INIT(_r) _r->regs[2] = 0;
-
- /* This is the location that an ET_DYN program is loaded if exec'ed. Typical
- use of this is to invoke "./ld.so someprog" to test out a new version of
- the loader. We need to make sure that it is out of the way of the program
- that it will "exec", and that there is sufficient room for the brk. */
-
- #define ELF_ET_DYN_BASE (2 * TASK_SIZE / 3)
-
- #ifdef __KERNEL__
- #define SET_PERSONALITY(ex,ibcs2) \
- current->personality = (ibcs2 ? PER_SVR4 : PER_LINUX)
- #endif
-
- #endif /* __ASM_MIPS_ELF_H */
-